func runtime.memequal

10 uses

	runtime (current package)
		map_faststr.go#L38: 				if k.str == key.str || memequal(k.str, key.str, uintptr(key.len)) {
		map_faststr.go#L73: 			if memequal(k.str, key.str, uintptr(key.len)) {
		map_faststr.go#L100: 			if k.str == key.str || memequal(k.str, key.str, uintptr(key.len)) {
		map_faststr.go#L142: 				if k.str == key.str || memequal(k.str, key.str, uintptr(key.len)) {
		map_faststr.go#L177: 			if memequal(k.str, key.str, uintptr(key.len)) {
		map_faststr.go#L204: 			if k.str == key.str || memequal(k.str, key.str, uintptr(key.len)) {
		map_faststr.go#L273: 			if k.str != key.str && !memequal(k.str, key.str, uintptr(key.len)) {
		map_faststr.go#L353: 			if k.str != key.str && !memequal(k.str, key.str, uintptr(key.len)) {
		stubs.go#L169: func memequal(a, b unsafe.Pointer, size uintptr) bool
		tracemap.go#L106: 			if memequal(unsafe.Pointer(&n.data[0]), data, size) {